You are here: Understanding the Meridian object model > About the DocumentType object > The DocumentType object properties > ConfigKeywords property

ConfigKeywords property

Gets the keywords configured for a document type.

Syntax

ConfigKeywords As String

Remarks

Assign keywords to document types to make it convenient to test for them in more ways than just by name. This can be useful for associating multiple document types together, for example, to authorize access by users or groups. For information about setting keywords in document types, see the BlueCielo Meridian Enterprise Configuration Guide.

Example

If InStr(document.DocumentType.ConfigKeywords, "MyKeyword",1) > 0 Then
...
End If